home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / LGP250S2.ZIP / src / libgplus.5 / libio / filedoal.c < prev    next >
C/C++ Source or Header  |  1993-10-07  |  4KB  |  106 lines

  1. /* 
  2. Copyright (C) 1993 Free Software Foundation
  3.  
  4. This file is part of the GNU IO Library.  This library is free
  5. software; you can redistribute it and/or modify it under the
  6. terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with GNU CC; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. As a special exception, if you link this library with files
  20. compiled with a GNU compiler to produce an executable, this does not cause
  21. the resulting executable to be covered by the GNU General Public License.
  22. This exception does not however invalidate any other reasons why
  23. the executable file might be covered by the GNU General Public License. */
  24.  
  25. /*
  26.  * Copyright (c) 1990 The Regents of the University of California.
  27.  * All rights reserved.
  28.  *
  29.  * Redistribution and use in source and binary forms are permitted
  30.  * provided that the above copyright notice and this paragraph are
  31.  * duplicated in all such forms and that any documentation,
  32.  * advertising materials, and other materials related to such
  33.  * distribution and use acknowledge that the software was developed
  34.  * by the University of California, Berkeley.  The name of the
  35.  * University may not be used to endorse or promote products derived
  36.  * from this software without specific prior written permission.
  37.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  38.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  39.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  40.  */
  41.  
  42. /* Modified for GNU iostream by Per Bothner 1991, 1992. */
  43.  
  44. #include "libioP.h"
  45. #include <sys/types.h>
  46. #include <sys/stat.h>
  47.  
  48. /* If this function pointer is non-zero, we should call it.
  49.    It's supposed to make sure _IO_flush_all gets called on exit.
  50.    We call it from _IO_file_doallocate, since that is likely
  51.    to get called by any program that does buffered I/O. */
  52. void (*_IO_cleanup_registration_needed)();
  53.  
  54. /*
  55.  * Allocate a file buffer, or switch to unbuffered I/O.
  56.  * Per the ANSI C standard, ALL tty devices default to line buffered.
  57.  *
  58.  * As a side effect, we set __SOPT or __SNPT (en/dis-able fseek
  59.  * optimisation) right after the _fstat() that finds the buffer size.
  60.  */
  61.  
  62. int
  63. _IO_file_doallocate(fp)
  64.      register _IO_FILE *fp;
  65. {
  66.   register size_t size, couldbetty;
  67.   register char *p;
  68.   struct stat st;
  69.  
  70.   if (_IO_cleanup_registration_needed)
  71.     (*_IO_cleanup_registration_needed)();
  72.   
  73.   if (fp->_fileno < 0 || fp->_jumps->__stat(fp, &st) < 0)
  74.     {
  75.       couldbetty = 0;
  76.       size = _IO_BUFSIZ;
  77. #if 0
  78.       /* do not try to optimise fseek() */
  79.       fp->_flags |= __SNPT;
  80. #endif
  81.     }
  82.   else
  83.     {
  84.       couldbetty = S_ISCHR(st.st_mode);
  85. #if _IO_HAVE_ST_BLKSIZE
  86.       size = st.st_blksize <= 0 ? _IO_BUFSIZ : st.st_blksize;
  87. #else
  88.       size = _IO_BUFSIZ;
  89. #endif
  90.     }
  91. #ifdef USE_MALLOC_BUF
  92.   if ((p = malloc(size)) == NULL) {
  93.     unbuffered(1); /* FIXME */
  94.     /*    fp->_bf._base = fp->_p = fp->_nbuf; */
  95.     /*     fp->_bf._size = 1; */
  96.     return EOF;
  97.   }
  98. #else
  99.   p = ALLOC_BUF(size);
  100. #endif
  101.   _IO_setb(fp, p, p+size, 1);
  102.   if (couldbetty && isatty(fp->_fileno))
  103.     fp->_flags |= _IO_LINE_BUF;
  104.   return 1;
  105. }
  106.